/*
 * @Author: A Cai 
 * @Date: 2022-05-We 11:31:29 
 * @Last Modified by:   永无bug 
 * @Last Modified time: 2022-05-We 11:31:29 
 */


.top{
    width: 100%;
    height: 130px;
    border-bottom: 2px solid #cbcbcb;
}
.nav_top{
    display: flex;
    justify-content: space-evenly;
    width: 1200px;
    height: 100%;
    margin:0 auto 0;
}
.nav_top>div{
    width: calc(1200px / 3);
    height: 100%;
}

/* logo - 左侧 */
.logo_left>div{
    height: 32px;
    text-align: center;
}
.logo_left>.logo_left_top{
    margin-top: 40px;
}
.logo_left>.logo_left_top>img{
    width: 100%;
    height: 100%;
}
.logo_left>.logo_left_bottom>img{
    width: 100%;
}
.logo_left>.logo_left_bottom{
    margin-top: 20px;
}

/* logo - 中间大图 */
.logo{
    text-align: center;
}
.logo>img{
    width: 100px;
    height: 100px;
    margin-top: 20px;
}
.bt>ul{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    margin-top:50px;
}
.bt>ul>li{
    width: 90px;
    height: 62px;
    text-align: center;
}
.bt>ul>li>img{
    display: block;
    width: 25px;
    height: 20px;
    margin-left: 25px;
}
.bt>ul>li>a{
    width: 100%;
    font-size: 14px;
    line-height: 35px;
    color:#666;
}

/* 头部结束 */


/* 导航栏 */
.nav_ber{
    width: 1200px;
    height: 75px;
}
.nav_ber>ul{
    display: flex;
    width: 100%;
    height: 100%;
}
.nav_ber>ul>li{
    position: relative;
    width: calc(1200px / 8);
    height: 100%;
    text-align: center;
    line-height: 75px;
}
.nav_ber>ul>li>a{
    color:#000;
    font-size: 18px;
}


/* 导航栏_hover */
.hover_data{
    display: none;
    position: absolute;
    top:75px;
    left: 10px;
    width: 136px;
    background-color: #d2e2f9;
    border-top:1px solid #0e6618;
    z-index: 999;
}

/* 伪类三角形 */
.hover_data::before{
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #0e6618;
    position: absolute;
    top: -10px;
    left: 60px;
}
.hover_data>ul>li{
    width: 100%;
    height: 60px;
    text-align: center;
}
.hover_data>ul>li>a{
    color:#000;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 60px;
}
.hover_data>ul>li>a:hover{
    background-color: #0e6618;
    color:#fff;
}
/* 导航栏结束 */


/* 大图轮播 */
.shuffling{
    width: 100%;
    height: 731px;
}
.shuffling img{
    width: 100%;
    height: 100%;
}
.shuffling .swiper-slide img{
    min-height: 730px;
    object-fit: cover;
    transform:scale(1.1);
    transition:all 3s ease;
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -ms-transform:scale(1.1);
    -o-transform:scale(1.1);
}
.shuffling .swiper-slide-active img{
    transform:scale(1);
}